home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / macros / latex / packages / psnfss / makefile < prev    next >
Makefile  |  1994-08-24  |  526b  |  41 lines

  1. default: psfonts 
  2.  
  3. all: psfonts lucida mathtime extra
  4.  
  5. extra:  charter nimbus utopia
  6.  
  7. psfonts:
  8.     echo y > answer
  9.     tex psfonts.ins < answer
  10.     latex psfonts.dtx
  11.     rm answer
  12.  
  13. lucida:
  14.     tex lucida.ins 
  15.     latex lucida.dtx
  16.  
  17. mathtime:
  18.     tex mathtime.ins
  19.     latex mathtime.dtx
  20.  
  21. charter:
  22.     tex charter.ins
  23.     latex charter.dtx
  24.  
  25. nimbus:
  26.     tex nimbus.ins
  27.     latex nimbus.dtx
  28.  
  29. utopia:
  30.     tex utopia.ins
  31.     latex utopia.dtx
  32.  
  33. clean:
  34.     -rm *.fd *.sty *.log *.dvi *.idx *.aux *.toc answer *.tmp
  35.  
  36. install:
  37.     /bin/mv *.sty *.fd /usr/local/lib/texmf/tex/latex2e
  38.  
  39.  
  40.  
  41.